home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / cpptut22 / flyaway.h < prev    next >
C/C++ Source or Header  |  1992-01-19  |  373b  |  14 lines

  1. // This file contains a few general purpose definitions to be used
  2. //  with several of the FLYAWAY adventure game classes.
  3.  
  4. #ifndef FLYAWAY_H
  5. #define FLYAWAY_H
  6.  
  7. #define FALSE 0
  8. #define TRUE  1
  9.  
  10. enum word {north = 1, east, south, west, drop, get,
  11.            look, inventory, read, buy, help, quit,
  12.            keys, candy, ticket, money, monitor, paper};
  13.  
  14. #endif